home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / unrar-free.prerm < prev    next >
Encoding:
Text File  |  2007-12-15  |  273 b   |  22 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. case "$1" in
  6.     remove|upgrade|deconfigure)
  7.         update-alternatives --remove unrar /usr/bin/unrar-free
  8.     ;;
  9.     
  10.     failed-upgrade)
  11.     ;;
  12.     
  13.     *)
  14.       echo "postinst called with unknown argument \$1'" >&2
  15.       exit 0
  16.     ;;
  17. esac
  18.  
  19.  
  20.  
  21. exit 0
  22.